-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
32 lines (32 loc) · 940 Bytes
/
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
{
"name": "css-ns",
"version": "1.2.2",
"description": "Dead-simple CSS namespaces",
"main": "css-ns.js",
"engines": {
"node": ">=7.0.0",
"npm": ">=3.10.8"
},
"dependencies": {},
"devDependencies": {
"browserify": "12.0.1",
"chai": "3.3.0",
"mocha": "2.3.3",
"react": "0.14.0",
"react-dom": "0.14.0",
"webdriverio": "3.2.6"
},
"repository": {
"type": "git",
"url": "https://github.com/jareware/css-ns.git"
},
"scripts": {
"test": "mocha *.spec.js",
"test-build": "browserify *.spec.js -v -o test/suite.js",
"test-selenium": "mocha selenium",
"deploy-gh-pages": "git stash && npm run test-build && cp -r test temp && git checkout gh-pages && mv temp/* . && rm -rf temp && git commit -am 'Automatic gh-pages deploy' && git push origin gh-pages && git checkout -"
},
"author": "Jarno Rantanen <[email protected]>",
"license": "MIT",
"types": "./css-ns.d.ts"
}