-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "babel-plugin-aexpr-source-transformation",
"version": "2.3.10",
"description": "3rd implementation strategy of active expressions, via a babel transformation",
"main": "dist/index.js",
"jsnext:main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha test/main.js",
"build": "babel index.js -d dist",
"build-test": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/active-expressions/babel-plugin-aexpr-source-transformation.git"
},
"keywords": [
"babel-plugin",
"babel",
"plugin",
"transform",
"active",
"expression",
"expressions",
"active-expression"
],
"author": {
"name": "Stefan Ramson",
"email": "stefan.ramson@gmail.com",
"url": "http://onsetsu.github.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/active-expressions/babel-plugin-aexpr-source-transformation/issues"
},
"homepage": "https://github.com/active-expressions/babel-plugin-aexpr-source-transformation#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"mocha": "2.2.5"
}
}