-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
46
47
48
49
50
51
{
"name": "@caiena/abilities",
"version": "0.1.0",
"description": "Control actions over resources",
"main": "dist/abilities.cjs.js",
"module": "dist/abilities.esm.js",
"browser": "dist/abilities.umd.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.5.5",
"babel-plugin-convert-to-json": "^0.1.0",
"babel-plugin-import-glob": "^2.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-change": "^2.1.2",
"chai-datetime": "^1.5.0",
"chai-subset": "^1.6.0",
"glob": "^7.1.3",
"js-yaml": "^3.12.2",
"mocha": "^6.0.0",
"node-watch": "^0.6.0",
"pryjs": "^1.0.3",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-glob-import": "^0.3.1",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-yaml": "^1.1.0",
"sinon": "^7.2.4",
"sinon-chai": "^3.3.0"
},
"scripts": {
"prebuild": "rm -rf ./dist/*",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "mocha --exit",
"pretest:all": "yarn run build",
"test:all": "mocha --exit \"test/**/*.spec.js\"",
"test:watch": "node ./bin/mocha-watch"
},
"files": [
"dist"
]
}